Add missing semicolon at the end of a statement.
authoroliskoli <oliskoli@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Wed, 26 Jul 2006 20:05:50 +0000 (20:05 +0000)
committeroliskoli <oliskoli@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Wed, 26 Jul 2006 20:05:50 +0000 (20:05 +0000)
git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2267 f51c46e8-681c-474f-0cfe-069cfd0219fb

gpsbabel/gbfile.c

index 147a4d4de1ce41b4580a6be066932da033959ac9..bbca7a24ed13fbc6ca584a8a4ec28a81527732ed 100644 (file)
@@ -549,7 +549,7 @@ gbfputflt(const float f, gbfile *file)
 int 
 gbfputcstr(const char *s, gbfile *file)
 {
-       return gbfwrite(s, 1, strlen(s) + 1, file)
+       return gbfwrite(s, 1, strlen(s) + 1, file);
 }
 
 int